home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Garbo
/
Garbo.cdr
/
mac
/
hypercrd
/
hc2_x
/
tcprogud.sit
/
TC Prog Guide
/
card_50308.txt
< prev
next >
Wrap
Text File
|
1991-02-27
|
478b
|
24 lines
-- card: 50308 from stack: in
-- bmap block id: 0
-- flags: 0000
-- background id: 4755
-- name:
-- part contents for background part 4
----- text -----
When 'if' statements are nested the 'else' clause is by default associated with the closest 'if' statement. Braces can be used to force a different association:
if (i < 10)
{
if (j == i)
done = 1;
}
else
done = 1;
-- part contents for background part 7
----- text -----
157